home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- engname=MathPalette
- filename=libMath.a
-
- cd /tmp
- if test -r /usr/lib/$filename
- then
- echo "Updating $engname library (/usr/lib)"
- ranlib /usr/lib/$filename
- exit
- fi
-
- if test -r /usr/local/lib/$filename
- then
- echo "Updating $engname library (/usr/local/lib)"
- ranlib /usr/local/lib/$filename
- exit
- fi
-
-
- echo "UpdateLibrary"
- echo "Can't find $engname library in either"
- echo "/usr/lib or /usr/local/lib"
- echo "Can't continue."
-
-